home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 3 / BBS in a box - Trilogy III.iso / Files / Util / B / Benchmark folder / Source Files / Main.cp < prev    next >
Encoding:
Text File  |  1993-04-19  |  520 b   |  20 lines  |  [TEXT/MPS ]

  1. // Copyright © 1992-1993 Emergent Behavior. All rights reserved.
  2.  
  3. //================================================================
  4. #ifndef _TBENCHMARKDOCUMENT_
  5.     #include "TBenchMarkDocument.h"
  6. #endif
  7.  
  8. #pragma segment Main
  9. //================================================================
  10. void
  11. main()
  12.     const OSType kFileType = 'BNCH';
  13.     const OSType kCreator  = 'QBCH';
  14.  
  15.     TApplication::InitToolbox();
  16.     TApplication theApp(kCreator, kFileType);
  17.     theApp.AdoptProtoDocument( new TBenchMarkDocument() );
  18.     theApp.Run();
  19. }